.btn-base {
    outline: none;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    background-color: #155ED2;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
}

    .btn-base .btn-icon {
        width: 24px;
        height: 24px;
    }

.btn-booking-add {
    border: 1px solid #155ED2;
    color: white;
    padding: 7px 16px;
    border-radius: 6px;
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    color: #155ED2;
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

[type='radio']:checked {
    background-size: 30px 30px;
    background-image: url("../images/checkbox-inner.svg");
    color: white;
    border: 1px solid #06081F1A;
}

.custom-radio:checked {
    width: 20px;
    height: 20px;
    background-size: 24px 24px;
    background-image: url("../images/checked-payment-icon.svg");
    border: none;
}

[type='radio'] {
    color: white;
    border: 1px solid #06081F1A;
    width: 24px;
    height: 24px;
    box-shadow: none !important;
}

@media screen and (max-width: 1279px) {
    [type='radio'] {
        width: 20px;
        height: 20px;
    }
}

.custom-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #475569;
}

[type='checkbox']:checked {
    background-size: 0.8rem 0.8rem;
}

.order-primary-400 {
    color: #10061F;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.order-primary-500 {
    color: #10061F;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.order-gray-400 {
    color: #7F8EA4;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

button:disabled {
    opacity: 20%;
}

.norecord {
    display: flex;
    flex-direction: column;
    padding: 12px 12px 24px 12px;
    gap: 12px;
    border-radius: 6px;
    background-color: #FBFCFC;
}

    .norecord .norecord-icon {
        height: 160px;
        display: flex;
        justify-content: center;
        width: 100%;
    }

        .norecord .norecord-icon img {
            width: 160px;
            height: 100%;
            overflow: hidden;
            object-fit: contain;
        }

.notfound {
    display: flex;
    flex-direction: column;
    padding: 12px 12px 24px 12px;
    gap: 12px;
    border-radius: 6px;
    background-color: #FBFCFC;
}

    .notfound .notfound-icon {
        height: 160px;
        display: flex;
        justify-content: center;
        width: 100%;
    }

        .notfound .notfound-icon img {
            width: 160px;
            height: 100%;
            overflow: hidden;
            object-fit: contain;
        }

.notfound-block {
    min-height: calc(100vh - 610px);
}

.modal-custom {
    background-color: #fff;
    box-shadow: 0px 10px 20px 0px #10061F40;
    padding: 24px;
    border-radius: 12px;
}

.backdrop-screen {
    display: none;
}

.drawer-sidebar-close {
    position: absolute;
    top: 16px;
    right: 24px;
    width: 32px;
    height: 32px;
}

.list-sidebar-links {
    background-color: transparent;
    width: 100%;
}

    .list-sidebar-links .sidebar-link {
        padding: 12px;
        font-size: 16px;
        line-height: 22px;
        color: #10061F;
        font-weight: 500;
    }

        .list-sidebar-links .sidebar-link.has-menu .sub-sidebar-links {
            display: none;
            padding-top: 6px;
        }

        .list-sidebar-links .sidebar-link.has-menu.active svg {
            transform: rotate(180deg);
        }

        .list-sidebar-links .sidebar-link.has-menu.active .sub-sidebar-links {
            display: block;
        }

        .list-sidebar-links .sidebar-link + .sidebar-link {
            border-top: 1px dotted #E1E1EA;
            padding-top: 28px;
        }

        .list-sidebar-links .sidebar-link a {
            display: flex;
            justify-content: flex-start;
            gap: 6px;
            align-items: center;
        }

        .list-sidebar-links .sidebar-link.social-link {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 12px;
            padding-top: 12px;
        }

            .list-sidebar-links .sidebar-link.social-link a {
                padding: 10px 12px 10px 0;
            }

@media screen and (max-width: 1279px) {
    .backdrop-screen {
        width: 100vw;
        height: 100vh;
        z-index: 98;
        position: fixed;
        background-color: #10061F99;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

        .backdrop-screen.show {
            display: block;
        }

        .backdrop-screen.show-manual {
            display: block;
        }

    .fixed-action img {
        width: 40px;
        height: 40px;
    }

    .screen-overflow {
        overflow-x: hidden;
        overflow-y: hidden;
    }

    .screen-overflow-manual {
        overflow-x: hidden;
        overflow-y: hidden;
    }

    #drawer-sidebar {
        top: 50px;
        height: auto;
        /* box-shadow: 0px 10px 20px 0px #10061F40;*/
        border-radius: 0 0 12px 12px;
    }

        #drawer-sidebar.active {
            transform: none;
        }
}

@media screen and (max-width: 767px) {
    .container {
        width: 100%;
        padding: 0 16px;
    }

    .fixed-action img {
        width: 32px;
        height: 32px;
    }

    #drawer-sidebar {
        top: 40px;
        height: auto;
    }

    .list-sidebar-links .sidebar-link {
        padding-top: 6px;
        font-size: 14px;
        padding-bottom: 6px;
    }

        .list-sidebar-links .sidebar-link + .sidebar-link {
            border-top: 1px dotted #E1E1EA;
            padding-top: 20px;
        }

    .drawer-sidebar-close {
        width: 30px;
        height: 30px;
        right: 16px;
    }

        .drawer-sidebar-close svg {
            width: 100%;
            height: 100%;
        }
}

@media screen and (max-width: 565px) {
    .ui-datepicker.ui-datepicker-multi {
        display: flex !important;
        flex-direction: column;
    }

    .ui-datepicker-multi-2 .ui-datepicker-group {
        width: 100%;
    }

    .ui-datepicker-inline .ui-datepicker-group.ui-datepicker-group-first {
        border-right: none !important;
    }
}

.bg-header-img {
    background-image: url("//file.smiletrip.vn/images/background/top-fhd.png");
    min-height: 720px;
    object-fit: fill;
    background-size: cover;
}

    .bg-header-img.search-header {
        height: 230px;
        min-height: unset;
    }

    .bg-header-img.booking-header {
        height: unset;
        min-height: unset;
    }

@media screen and (max-width: 1279px) {
    .bg-header-img {
        min-height: 542px;
    }
}

@media screen and (max-width: 767px) {
    .bg-header-img {
        min-height: 316px;
        background-position: -65px 0px;
    }
}

.item-menu .img {
    display: block;
}

.item-menu .img-hover {
    display: none;
}

.item-menu:hover {
    color: #155ed2;
}

    .item-menu:hover .img {
        display: none;
    }

    .item-menu:hover .img-hover {
        display: block;
    }

.menu-icon {
    width: 28px;
    height: 28px;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #155ED2;
    box-shadow: 0px 4px 8px 0px #091E4233;
}

.swiper {
    width: 100%;
    height: 100%;
    padding: 1px;
}

.swiper-button-prev {
    box-shadow: 0 4px 8px 0px #091e4233;
    width: 48px;
    height: 48px;
    background-color: white;
    border-radius: 50%;
    left: calc((100vw - 1160px) / 2 - 76px);
}

    .swiper-button-prev::after {
        display: none;
    }

    .swiper-button-prev:hover {
        background: #155ed2;
    }

        .swiper-button-prev:hover svg path {
            stroke: white;
        }

    .swiper-button-prev svg {
        width: 24px;
    }

@media screen and (max-width: 1439px) {
    .swiper-button-prev {
        left: calc((100vw - 1125px) / 2 - 36px);
        width: 44px;
        height: 44px;
    }
}

@media screen and (max-width: 1280px) {
    .swiper-button-prev {
        left: calc((100vw - 676px) / 2 - 36px);
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 767px) {
    .swiper-button-prev {
        left: 16px;
        width: 40px;
        height: 40px;
        display: none;
    }
}

.swiper-button-next {
    box-shadow: 0 4px 8px 0px #091e4233;
    width: 48px;
    height: 48px;
    background-color: white;
    border-radius: 50%;
    right: calc((100vw - 1160px) / 2 - 76px);
}

    .swiper-button-next::after {
        display: none;
    }

    .swiper-button-next:hover {
        background: #155ed2;
    }

        .swiper-button-next:hover svg path {
            stroke: white;
        }

    .swiper-button-next svg {
        height: 18px;
    }

@media screen and (max-width: 1439px) {
    .swiper-button-next {
        right: calc((100vw - 1125px) / 2 - 36px);
        width: 44px;
        height: 44px;
    }
}

@media screen and (max-width: 1280px) {
    .swiper-button-next {
        right: calc((100vw - 676px) / 2 - 36px);
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 767px) {
    .swiper-button-next {
        display: none;
        right: 16px;
        width: 40px;
        height: 40px;
    }
}

footer {
    padding: 50px 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/footer-background.png);
}

@media screen and (max-width: 1439px) {
    footer {
        padding: 24px 0;
    }

        footer .footer-item {
            font-size: 14px;
        }
}

@media screen and (max-width: 1279px) {
    footer .footer-item {
        font-size: 12px;
    }

        footer .footer-item img {
            width: 20px;
            height: 20px;
        }
}

@media screen and (max-width: 767px) {
    footer {
        padding: 16px 0;
    }

        footer .footer-item {
            font-size: 10px;
        }

            footer .footer-item img {
                width: 12px;
                height: 12px;
            }

            footer .footer-item + .footer-item {
                margin-top: 8px;
            }
}

/* custom styles for datepicker */
.ui-datepicker-calendar td a[data-cell-minprice] {
    border: 1px solid #24be4e;
    background: white;
}

.ui-datepicker-calendar td a[data-price] {
    position: relative;
}

.ui-datepicker-calendar td a[data-slot]::before {
    content: attr(data-slot);
    display: block;
    position: absolute;
    font-size: 8px;
    font-weight: 500;
    color: #bcbcbc;
    right: 2px;
    top: -1px;
}

.ui-datepicker-calendar td a[data-price]::after {
    /*STYLE THE CUSTOME DATA HERE*/
    content: attr(data-price);
    display: block;
    font-size: 8px;
    font-weight: 500;
    color: #10061f;
}

.ui-datepicker-inline {
    width: 100% !important;
    padding: 0 !important;
}

    .ui-datepicker-inline .ui-datepicker-group {
        padding: 20px 10px;
    }

        .ui-datepicker-inline .ui-datepicker-group .ui-datepicker-header {
            padding: 0 !important;
        }

        .ui-datepicker-inline .ui-datepicker-group.ui-datepicker-group-first {
            border-right: 1px solid #ecf0f1;
        }

        .ui-datepicker-inline .ui-datepicker-group .ui-datepicker-prev {
            background-image: url("../images/cheveron-left-datepicker.svg");
            background-repeat: no-repeat;
            background-position: center center;
            background-color: white;
            border: none;
            cursor: pointer;
        }

            .ui-datepicker-inline .ui-datepicker-group .ui-datepicker-prev .ui-icon {
                display: none;
            }

        .ui-datepicker-inline .ui-datepicker-group .ui-datepicker-next {
            background-image: url("../images/cheveron-right-datepicker.svg");
            background-repeat: no-repeat;
            background-position: center center;
            background-color: white;
            border: none;
            cursor: pointer;
        }

            .ui-datepicker-inline .ui-datepicker-group .ui-datepicker-next .ui-icon {
                display: none;
            }

    .ui-datepicker-inline .ui-datepicker-header {
        font-size: 18px;
        line-height: 24px;
        color: #10061f;
        font-weight: 600;
    }

    .ui-datepicker-inline th.ui-datepicker-week-end {
        color: #ff6a55;
    }

    .ui-datepicker-inline .ui-state-default {
        padding: 0;
        text-align: center;
        font-size: 14px;
        color: #10061f;
        padding: 4px 4px;
        border-radius: 4px;
        width: 40px;
        height: 40px;
        border: 1px solid transparent;
    }

        .ui-datepicker-inline .ui-state-default.ui-state-highlight, .ui-datepicker-inline .ui-state-default.ui-state-active {
            border: 1px solid #24be4e;
            background: white;
        }

        .ui-datepicker-inline .ui-state-default:hover {
            background-color: #ecf0f1;
        }

    .ui-datepicker-inline .ui-datepicker-today .ui-state-default {
        background-color: #ecf0f1;
    }

        .ui-datepicker-inline .ui-datepicker-today .ui-state-default:not(.ui-state-active) {
            border: 1px solid transparent;
        }

@media screen and (max-width: 767px) {
    .ui-datepicker-inline .ui-datepicker-header {
        font-size: 14px;
    }

    .ui-datepicker-inline .ui-datepicker-group.ui-datepicker-group-first {
        padding-top: 0;
        padding-left: 0;
    }

    .ui-datepicker table {
        font-size: 14px;
    }

    .ui-datepicker-group.ui-datepicker-group-last {
        border-top: 1px dashed #ecf0f1;
    }
}

.ui-slider {
    position: relative;
    text-align: left;
}

    .ui-slider .ui-slider-handle {
        position: absolute;
        z-index: 2;
        width: 20px;
        height: 20px;
        cursor: default;
        -ms-touch-action: none;
        touch-action: none;
        border-radius: 50%;
        border: 1.5px solid #155ED2 !important;
        color: #155ED2 !important;
        background-color: white;
        background-image: url("../images/filter-airplan-icon.png");
        background-repeat: no-repeat;
        background-position: center center;
        outline: none !important;
    }

    .ui-slider .ui-slider-range {
        position: absolute;
        z-index: 1;
        font-size: .7em;
        display: block;
        border: 0;
        background-position: 0 0;
        background-color: #155ED2;
    }

    /* support: IE8 - See #6727 */
    .ui-slider.ui-state-disabled .ui-slider-handle,
    .ui-slider.ui-state-disabled .ui-slider-range {
        filter: inherit;
    }

.ui-slider-horizontal {
    height: 2px;
    background-color: #10061F;
}

    .ui-slider-horizontal .ui-slider-handle {
        top: -9px;
        margin-left: -.6em;
    }

        .ui-slider-horizontal .ui-slider-handle:first-of-type {
            margin-left: 0;
        }

        .ui-slider-horizontal .ui-slider-handle:last-of-type {
            margin-left: -1.2em;
        }

    .ui-slider-horizontal .ui-slider-range {
        top: 0;
        height: 100%;
    }

    .ui-slider-horizontal .ui-slider-range-min {
        left: 0;
    }

    .ui-slider-horizontal .ui-slider-range-max {
        right: 0;
    }

.ui-slider-vertical {
    width: .8em;
    height: 100px;
}

    .ui-slider-vertical .ui-slider-handle {
        left: -.3em;
        margin-left: 0;
        margin-bottom: -.6em;
    }

    .ui-slider-vertical .ui-slider-range {
        left: 0;
        width: 100%;
    }

    .ui-slider-vertical .ui-slider-range-min {
        bottom: 0;
    }

    .ui-slider-vertical .ui-slider-range-max {
        top: 0;
    }

.vn-icon {
    background: url("../images/vn-icon.png") no-repeat center center;
    width: 18px;
    height: 18px;
    display: block;
}

.with-icon {
    background: url("../images/with-icon.png") no-repeat center center;
    width: 16px;
    height: 16px;
    display: block;
}

.refresh-icon {
    background: url("../images/refresh-icon.svg") no-repeat center center;
    width: 16px;
    height: 16px;
    display: block;
}

.cancellation-icon {
    background: url("../images/cancellation-icon.svg") no-repeat center center;
    width: 16px;
    height: 16px;
    display: block;
}

.signed-luggage-icon {
    background: url("../images/signed-luggage-icon.svg") no-repeat center center;
    width: 16px;
    height: 16px;
    display: block;
}

.luggage-icon {
    background: url("../images/luggage-icon.svg") no-repeat center center;
    width: 16px;
    height: 16px;
    display: block;
}

.luggage-direction-icon {
    background: url("../images/luggage-direction-icon.svg") no-repeat center center;
    width: 32px;
    height: 20px;
    display: block;
}

.plus-icon {
    background: url("../images/plus-icon.svg") no-repeat center center;
    width: 32px;
    height: 20px;
    display: block;
}

.information-circle-icon {
    background: url("../images/information-circle-icon.svg") no-repeat center center;
    width: 16px;
    height: 16px;
    display: block;
}

.currency-dollar-icon {
    background: url("../images/currency-dollar-icon.svg") no-repeat center center;
    width: 16px;
    height: 16px;
    display: block;
}

.person-icon {
    background: url("../images/person-icon.svg") no-repeat center center;
    width: 20px;
    height: 20px;
    display: block;
}

.child-icon {
    background: url("../images/child-icon.svg") no-repeat center center;
    width: 20px;
    height: 20px;
    display: block;
}

.icon-copy {
    background: url("../images/icon-copy.svg") no-repeat center center;
    width: 32px;
    height: 32px;
    display: block;
}

.baby-icon {
    background: url("../images/baby-icon.svg") no-repeat center center;
    width: 20px;
    height: 20px;
    display: block;
}

.icon-point {
    background: url("../images/search-item-plain-point.svg") no-repeat center center;
    width: 16px;
    height: 16px;
    display: block;
    background-size: contain;
}

.icon-backward {
    background: url("../images/icon-backward.svg") no-repeat center center;
    width: 24px;
    height: 24px;
    display: block;
    background-size: contain;
}

.icon-next {
    background: url("../images/icon-next.svg") no-repeat center center;
    width: 24px;
    height: 24px;
    display: block;
    background-size: contain;
    transform: rotate(180deg);
}

.curency-icon {
    background: url("../images/curency-icon.svg") no-repeat center center;
    width: 20px;
    height: 20px;
    display: block;
    background-size: contain;
    transform: rotate(180deg);
}

.icon-booking-ticket {
    background: url("../images/icon-booking-ticket.svg") no-repeat center center;
    width: 24px;
    height: 24px;
    display: block;
    background-size: contain;
}

.icon-payment-global {
    background: url("../images/icon-payment-global.svg") no-repeat center center;
    width: 24px;
    height: 24px;
    display: block;
    background-size: contain;
}

.icon-payment-incountry {
    background: url("../images/icon-payment-incountry.svg") no-repeat center center;
    width: 24px;
    height: 24px;
    display: block;
    background-size: contain;
}

.icon-payment-bank {
    background: url("../images/icon-payment-bank.svg") no-repeat center center;
    width: 24px;
    height: 24px;
    display: block;
    background-size: contain;
}

.icon-payment-cash {
    background: url("../images/icon-payment-cash.svg") no-repeat center center;
    width: 24px;
    height: 24px;
    display: block;
    background-size: contain;
}

.icon-payment-qr {
    background: url("../images/icon-payment-qr.svg") no-repeat center center;
    width: 24px;
    height: 24px;
    display: block;
    background-size: contain;
}

.icon-payment-latter {
    background: url("../images/icon-payment-latter.svg") no-repeat center center;
    width: 24px;
    height: 24px;
    display: block;
    background-size: contain;
}

.icon-location {
    background: url("../images/icon-location.svg") no-repeat center center;
    width: 20px;
    height: 20px;
    display: block;
    background-size: contain;
}

.icon-phonenumber {
    background: url("../images/icon-phonenumber.svg") no-repeat center center;
    width: 20px;
    height: 20px;
    display: block;
    background-size: contain;
}

.icon-contact {
    background: url("../images/icon-contact.svg") no-repeat center center;
    width: 24px;
    height: 24px;
    display: block;
    background-size: contain;
}

.icon-payment-btn {
    background: url("../images/icon-payment-btn.svg") no-repeat center center;
    width: 24px;
    height: 24px;
    display: block;
    background-size: contain;
}

.icon-ticket-code {
    background: url("../images/icon-ticket-code.svg") no-repeat center center;
    width: 48px;
    height: 48px;
    display: block;
    background-size: contain;
}

.icon-print {
    background: url("../images/icon-print.svg") no-repeat center center;
    width: 24px;
    height: 24px;
    display: block;
    background-size: contain;
}

.icon-print-white {
    background: url("../images/icon-print-white.svg") no-repeat center center;
    width: 24px;
    height: 24px;
    display: block;
    background-size: contain;
}

.icon-step3-logo {
    background: url("../images/step3-logo.svg") no-repeat center center;
    width: 69.55px;
    height: 17.12px;
    display: block;
    background-size: contain;
}

.icon-document-add {
    background: url("../images/icon-document-add.svg") no-repeat center center;
    width: 16px;
    height: 16px;
    display: block;
    background-size: contain;
}

.fly-world-icon {
    background: url("../images/fly-world-icon.svg") no-repeat center center;
    width: 62px;
    height: 48px;
    display: block;
    background-size: contain;
}

.icon-menu-mobile {
    background: url("https://www.smiletrip.vn/images/icon-menu-mobile.svg") no-repeat center center;
    width: 16px;
    height: 16px;
    display: block;
    background-size: contain;
}

.icon-location-marker {
    background: url("../images/icon-location-marker.svg") no-repeat center center;
    width: 16px;
    height: 16px;
    display: block;
    background-size: contain;
}

.icon-mail {
    background: url("../images/icon-mail.svg") no-repeat center center;
    width: 16px;
    height: 16px;
    display: block;
    background-size: contain;
}

.icon-phone {
    background: url("../images/icon-phone.svg") no-repeat center center;
    width: 16px;
    height: 16px;
    display: block;
    background-size: contain;
}

.icon-user-circle {
    background: url("../images/icon-user-circle.svg") no-repeat center center;
    width: 16px;
    height: 16px;
    display: block;
    background-size: contain;
}

.icon-search {
    background: url("../images/icon-search.svg") no-repeat center center;
    width: 20px;
    height: 20px;
    display: block;
    background-size: contain;
}

.icon-clock {
    background: url("../images/icon-clock.svg") no-repeat center center;
    width: 48px;
    height: 48px;
    display: block;
    background-size: contain;
}

.icon-document-search {
    background: url("../images/icon-document-search.svg") no-repeat center center;
    width: 20px;
    height: 20px;
    display: block;
    background-size: contain;
}

.icon-close-mobile {
    background: url("../images/icon-close-mobile.svg") no-repeat center center;
    width: 24px;
    height: 24px;
    background-size: contain;
}

.ticket-icon {
    width: 20px;
    height: 20px;
    display: block;
}

    .ticket-icon.ticket-normal {
        background: url("../images/ticket-normal-icon.svg") no-repeat center center;
        background-size: contain;
    }

    .ticket-icon.ticket-normal-special {
        background: url("../images/ticket-normal-special.svg") no-repeat center center;
        background-size: contain;
    }

    .ticket-icon.ticket-economy {
        background: url("../images/ticket-economy.svg") no-repeat center center;
        background-size: contain;
    }

    .ticket-icon.ticket-best {
        background: url("../images/ticket-best.svg") no-repeat center center;
        background-size: contain;
    }

.dropdown-date-btn {
    font-weight: 500;
}

.dropdown-btn {
    font-weight: 500;
}

@media screen and (min-width: 768px) {
    .filter-action-search > div.default-checkbox > label {
        display: flex;
        gap: 3px;
    }
}

.deal-block {
    padding: 50px 0;
    background-color: #f2f7fb;
    display: flex;
    align-items: center;
    border-bottom-left-radius: 280px;
}

@media screen and (max-width: 1279px) {
    .deal-block {
        border-bottom-left-radius: 0;
        padding: 32px 0;
    }
}

@media screen and (max-width: 767px) {
    .deal-block {
        border-bottom-left-radius: 0;
        padding: 16px 0;
    }

        .deal-block .deal-with-small .deal-item-small:last-of-type {
            display: none;
        }
}

.deal-item-content {
    position: absolute;
    right: 15px;
    bottom: 15px;
}

    .deal-item-content .deal-item-content--date {
        color: #f37121;
        font-size: 14px;
        font-weight: 500;
        text-align: end;
        margin-bottom: 6px;
    }

    .deal-item-content .deal-item-content-row {
        display: flex;
        align-items: baseline;
        justify-content: flex-end;
        margin-bottom: 6px;
    }

        .deal-item-content .deal-item-content-row .deal-item-content-label {
            font-size: 14px;
            color: #bcbcbc;
            margin-right: 6px;
        }

        .deal-item-content .deal-item-content-row .deal-item-content-value {
            font-size: 16px;
            color: #10061f;
            font-weight: 500;
        }

    .deal-item-content .deal-item-origin-price {
        text-decoration: line-through;
        color: #475569;
        font-size: 12px;
        text-align: end;
        line-height: 20px;
    }

    .deal-item-content .deal-item-price {
        font-weight: 500;
        color: #155ed2;
        font-size: 20px;
        text-align: end;
        line-height: 36px;
    }

@media screen and (max-width: 1279px) {
    .deal-item-content .deal-item-content--date {
        font-size: 12px;
    }

    .deal-item-content .deal-item-content-row {
        margin-bottom: 6px;
    }

        .deal-item-content .deal-item-content-row .deal-item-content-label {
            font-size: 12px;
            color: #bcbcbc;
            margin-right: 6px;
        }

        .deal-item-content .deal-item-content-row .deal-item-content-value {
            font-size: 14px;
            color: #10061f;
            font-weight: 600px;
        }

    .deal-item-content .deal-item-origin-price {
        font-size: 12px;
    }

    .deal-item-content .deal-item-price {
        font-size: 20px;
    }
}

.deal-item-big {
    height: 380px;
    background: white;
    border-radius: 24px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 1px 2px 0 #091e4240;
    display: block;
    cursor: pointer;
}

    .deal-item-big:hover {
        background-color: #f9e9df !important;
    }

    .deal-item-big .deal-item-image {
        position: absolute;
        top: -24px;
        left: -24px;
        width: 212px;
        height: 282px;
        border-radius: 90px;
        padding: 24px;
        background-color: #e5eff7;
    }

        .deal-item-big .deal-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 60px;
        }

    .deal-item-big .deal-item-tag {
        width: 95px;
        height: 30px;
        background: linear-gradient(to right, #da3835, #f9700d);
        position: absolute;
        left: 140px;
        top: 20px;
        color: white;
        font-size: 12px;
        font-weight: 600;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }

@media screen and (max-width: 1279px) {
    .deal-item-big {
        height: 302px;
    }

        .deal-item-big .deal-item-image {
            position: absolute;
            top: -24px;
            left: -14px;
            width: 159px;
            height: 224px;
            border-radius: 60px;
            padding: 24px 14px;
        }

            .deal-item-big .deal-item-image img {
                border-radius: 40px;
            }

        .deal-item-big .deal-item-tag {
            width: 83px;
            height: 24px;
            background: linear-gradient(to right, #da3835, #f9700d);
            position: absolute;
            left: 116px;
            top: 20px;
            color: white;
            font-size: 12px;
            font-weight: 500;
            border-radius: 32px;
            display: flex;
            align-items: center;
            justify-content: space-around;
        }
}

@media screen and (max-width: 767px) {
    .deal-item-big {
        height: 116px;
        border-radius: 24px 12px 12px 24px;
    }

        .deal-item-big .deal-item-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 86px;
            height: 116px;
            border-radius: 24px;
            padding: 8px 6px;
        }

            .deal-item-big .deal-item-image img {
                border-radius: 30px;
            }

        .deal-item-big .deal-item-tag {
            width: 65px;
            height: 18px;
            background: linear-gradient(to right, #da3835, #f9700d);
            position: absolute;
            left: 64px;
            top: 0px;
            color: white;
            font-size: 10px;
            font-weight: 500;
            border-radius: 32px;
            display: flex;
            align-items: center;
            justify-content: space-around;
        }

        .deal-item-big .deal-item-content {
            bottom: 6px;
            right: 8px;
        }

            .deal-item-big .deal-item-content .deal-item-content--date {
                margin-bottom: 0;
            }

            .deal-item-big .deal-item-content .deal-item-content-row {
                margin-bottom: 0;
            }

            .deal-item-big .deal-item-content .deal-item-origin-price {
                font-size: 10px;
            }

            .deal-item-big .deal-item-content .deal-item-price {
                font-size: 14px;
                line-height: 18px;
            }
}

.deal-with-small {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 23px;
}

@media screen and (max-width: 1279px) {
    .deal-with-small {
        gap: 18px;
    }
}

.deal-item-small {
    height: 178px;
    background: white;
    border-radius: 24px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 1px 2px 0 #091e4240;
    cursor: pointer;
}

    .deal-item-small:hover {
        background-color: #f9e9df !important;
    }

    .deal-item-small.active {
        background-color: #155ed2;
    }

        .deal-item-small.active .deal-item-content .deal-item-content-value {
            color: #fff !important;
        }

        .deal-item-small.active .deal-item-content .deal-item-origin-price {
            color: #bcbcbc;
        }

        .deal-item-small.active .deal-item-content .deal-item-price {
            color: #fff !important;
        }

        .deal-item-small.active:hover {
            background-color: #155ed2 !important;
        }

    .deal-item-small .deal-item-image {
        position: absolute;
        top: -20px;
        left: -12px;
        width: 135px;
        height: 180px;
        border-radius: 40px;
        padding: 12px;
        background-color: #e5eff7;
    }

        .deal-item-small .deal-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 40px;
        }

    .deal-item-small .deal-tag {
        font-size: 12px;
        color: white;
        background: black;
        padding: 2px 12px;
        border-radius: 12px;
        left: 87px;
        top: 17px;
        position: sticky;
        width: 84px;
        background: linear-gradient(to right, #da3835, #f9700d);
    }

    .deal-item-small .deal-item-content {
        bottom: 5px;
        right: 10px;
    }

        .deal-item-small .deal-item-content .deal-item-content--date {
            font-size: 12px;
        }

        .deal-item-small .deal-item-content .deal-item-content-row .deal-item-content-label {
            font-size: 12px;
        }

        .deal-item-small .deal-item-content .deal-item-content-row .deal-item-content-value {
            font-size: 14px;
        }

        .deal-item-small .deal-item-content .deal-item-price {
            font-size: 18px;
            line-height: 24px;
        }

@media screen and (max-width: 1279px) {
    .deal-item-small {
        height: 142px;
    }

        .deal-item-small .deal-item-content .deal-item-price {
            font-size: 16px;
            line-height: 22px;
        }

        .deal-item-small .deal-item-image {
            position: absolute;
            top: -13px;
            left: -9px;
            width: 108px;
            height: 144px;
            border-radius: 35px;
            padding: 13px 9px;
            background-color: #e5eff7;
        }

            .deal-item-small .deal-item-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 35px;
            }

        .deal-item-small .deal-tag {
            font-size: 10px;
            padding: 2px 8px;
            border-radius: 32px;
            left: 73px;
            top: 16px;
            position: sticky;
            width: 65px;
            background: linear-gradient(to right, #da3835, #f9700d);
        }
}

@media screen and (max-width: 767px) {
    .deal-item-small {
        height: 116px;
        border-radius: 24px 12px 12px 24px;
    }

        .deal-item-small .deal-item-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 86px;
            height: 116px;
            border-radius: 24px;
            padding: 8px 6px;
        }

            .deal-item-small .deal-item-image img {
                border-radius: 30px;
            }

        .deal-item-small .deal-item-tag {
            width: 65px;
            height: 18px;
            background: linear-gradient(to right, #da3835, #f9700d);
            position: absolute;
            left: 64px;
            top: 0px;
            color: white;
            font-size: 10px;
            font-weight: 500;
            border-radius: 32px;
            display: flex;
            align-items: center;
            justify-content: space-around;
        }

        .deal-item-small .deal-item-content {
            bottom: 6px;
            right: 8px;
        }

            .deal-item-small .deal-item-content .deal-item-content--date {
                margin-bottom: 0;
            }

            .deal-item-small .deal-item-content .deal-item-content-row {
                margin-bottom: 0;
            }

            .deal-item-small .deal-item-content .deal-item-origin-price {
                font-size: 10px;
            }

            .deal-item-small .deal-item-content .deal-item-price {
                font-size: 14px;
                line-height: 18px;
            }
}

#visa-service-action .swiper-button-next {
    right: -60px;
    top: calc(50% + 25px);
}

@media screen and (max-width: 1439px) {
    #visa-service-action .swiper-button-next {
        right: -60px;
        width: 44px;
        height: 44px;
    }
}

@media screen and (max-width: 1279px) {
    #visa-service-action .swiper-button-next {
        right: -60px;
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 767px) {
    #visa-service-action .swiper-button-next {
        right: 16px;
        width: 40px;
        height: 40px;
    }
}

#visa-service-action .swiper-button-prev {
    left: -60px;
    top: calc(50% + 25px);
}

@media screen and (max-width: 1439px) {
    #visa-service-action .swiper-button-prev {
        left: -60px;
        width: 44px;
        height: 44px;
    }
}

@media screen and (max-width: 1279px) {
    #visa-service-action .swiper-button-prev {
        left: -60px;
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 767px) {
    #visa-service-action .swiper-button-prev {
        left: -60px;
        width: 40px;
        height: 40px;
    }
}

.promote-action .swiper-button-next {
    right: -45px;
}

@media screen and (max-width: 1439px) {
    .promote-action .swiper-button-next {
        right: calc((100vw - 1216px) / 2 - 66px);
        width: 44px;
        height: 44px;
    }
}

@media screen and (max-width: 1279px) {
    .promote-action .swiper-button-next {
        right: -12px;
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 767px) {
    .promote-action .swiper-button-next {
        right: 16px;
        width: 40px;
        height: 40px;
    }
}

.promote-action .swiper-button-prev {
    left: -45px;
}

@media screen and (max-width: 1439px) and (min-width: 1280px) {
    .promote-action .swiper-button-prev {
        left: calc((100vw - 1216px) / 2 - 66px);
        width: 44px;
        height: 44px;
    }
}

@media screen and (max-width: 1279px) {
    .promote-action .swiper-button-prev {
        left: -12px;
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 767px) {
    .promote-action .swiper-button-prev {
        left: 16px;
        width: 40px;
        height: 40px;
    }
}

.filter-route-type .filter-route-type-item > label {
    font-size: 16px;
}

@media screen and (max-width: 1399px) {
    .filter-route-type .filter-route-type-item > label {
        font-size: 14px;
    }
}

.filter-route-type .filter-route-type-item > button > span {
    font-size: 16px;
}

@media screen and (max-width: 1399px) {
    .filter-route-type .filter-route-type-item > button > span {
        font-size: 14px;
    }
}

.search-wraper .dropdown-place-btn {
    border: 1px solid #E1E1EA;
}

.search-wraper .filter-date {
    border: 1px solid #E1E1EA;
}

.search-wraper .filter-person {
    border: 1px solid #E1E1EA;
}

@media screen and (min-width: 1400px) {
    .search-wraper .dropdown-place-btn input {
        font-size: 16px;
    }

    .search-wraper .filter-date input {
        font-size: 16px;
    }

    .search-wraper .filter-person {
        border: 1px solid #E1E1EA;
    }

    #prority-tab-content .tab-content a {
        font-size: 16px;
    }

    .list-item-action > li > button {
        font-size: 16px;
    }
}
/* scss service block */
.visa-service-block {
    padding: 48px 0 24px;
}

@media screen and (max-width: 1439px) {
    .visa-service-block {
        padding: 32px 0 24px;
    }
}

@media screen and (max-width: 767px) {
    .visa-service-block {
        padding: 16px 0 16px;
    }
}

.visa-service-item {
    cursor: pointer;
    position: relative;
    box-shadow: 0 1px 2px 0 #091e4240;
    border-radius: 14px;
}

    .visa-service-item:hover {
        background-color: #f9e9df;
    }

    .visa-service-item .visa-service-item-content {
        padding: 0 16px 10px;
    }

    .visa-service-item .visa-service-item-dotted {
        border-top: 2px dotted #83838380;
        margin: 20px 15px 15px;
    }

    .visa-service-item .visa-service-item-title {
        color: #475569;
        font-size: 14px;
        line-height: 20px;
        font-weight: 500;
        margin-bottom: 8px;
    }

    .visa-service-item .visa-service-item-des {
        color: #475569;
        font-size: 12px;
        line-height: 16px;
        font-weight: 400;
        margin-bottom: 12px;
    }

    .visa-service-item .visa-service-item-image {
        width: 100%;
        max-height: 200px;
        overflow: hidden;
        border-radius: 14px 14px 0 0;
    }

        .visa-service-item .visa-service-item-image img {
            width: 100%;
            object-fit: fill;
            border-radius: 14px 14px 0 0;
        }

    .visa-service-item::before {
        content: "";
        width: 15px;
        height: 15px;
        background: #fff;
        border-radius: 50%;
        box-shadow: 1px 0px 0px 0 #091e4240;
        position: absolute;
        top: 67%;
        left: -8px;
        transform: translateY(-50%);
        z-index: 2;
    }

    .visa-service-item::after {
        content: "";
        width: 15px;
        height: 15px;
        background: #fff;
        border-radius: 50%;
        box-shadow: -2px 0px 0px 0 #091e4240;
        position: absolute;
        top: 67%;
        right: -8px;
        transform: translateY(-50%);
        z-index: 2;
    }

@media screen and (max-width: 1279px) {
    .visa-service-item .visa-service-item-content {
        padding: 0 12px 10px;
    }

        .visa-service-item .visa-service-item-content .visa-service-item-dotted {
            margin-top: 6px;
            margin-bottom: 6px;
        }

    .visa-service-item::before {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        box-shadow: 1px 0px 0px 0 #091e4240;
        top: 67%;
        left: -8px;
    }

    .visa-service-item::after {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        box-shadow: -2px 0px 0px 0 #091e4240;
        top: 67%;
        right: -8px;
    }
}

@media screen and (max-width: 767px) {
    .visa-service-item .visa-service-item-content {
        padding: 0 6px 10px;
    }

        .visa-service-item .visa-service-item-content .visa-service-item-dotted {
            margin-top: 6px;
            margin-bottom: 6px;
        }

    .visa-service-item .visa-service-item-title {
        font-size: 10px;
        line-height: 14px;
        margin-bottom: 2px;
    }

    .visa-service-item .visa-service-item-des {
        font-size: 8px;
        line-height: 12px;
        margin-bottom: 4px;
    }

    .visa-service-item .visa-service-item-image {
        max-height: 110px;
    }

    .visa-service-item::before {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        box-shadow: 1px 0px 0px 0 #091e4240;
        top: 67%;
        left: -4px;
    }

    .visa-service-item::after {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        box-shadow: -2px 0px 0px 0 #091e4240;
        top: 67%;
        right: -4px;
    }
}

.why-smiletrip {
    background-color: #f2f7fb;
    border-top-right-radius: 260px;
    border-bottom-right-radius: 260px;
    padding: 48px 0;
}

@media screen and (max-width: 1279px) {
    .why-smiletrip {
        padding: 32px 0;
        border-bottom-right-radius: 0;
        border-top-right-radius: 0px;
    }
}

@media screen and (max-width: 767px) {
    .why-smiletrip {
        padding: 16px 0 16px;
    }
}

.trust-me-item {
    box-shadow: 0 1px 2px 0 #091e4240;
    cursor: pointer;
    padding: 16px;
    border-radius: 24px;
    background-color: #fff;
    height: 258px;
    text-align: center;
}

    .trust-me-item:hover {
        background-color: #f9e9df;
    }

    .trust-me-item .trust-me-item-image {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

@media screen and (max-width: 1439px) {
    .trust-me-item {
        line-height: 19px;
        height: 230px;
    }
}

@media screen and (max-width: 1279px) {
    .trust-me-item {
        height: 172px;
        padding: 12px;
    }

        .trust-me-item .trust-me-item-image {
            height: 64px;
            margin-bottom: 12px;
        }
}

@media screen and (max-width: 767px) {
    .trust-me-item {
        height: 126px;
        padding: 6px;
    }

        .trust-me-item .trust-me-item-image {
            height: 32px;
            margin-bottom: 12px;
        }

        .trust-me-item p {
            line-height: 16px;
        }
}

.apply-visa {
    background-color: #f2f7fb;
    border-top-left-radius: 260px;
    border-bottom-left-radius: 260px;
    padding: 48px 0;
}

@media screen and (max-width: 1279px) {
    .apply-visa {
        padding: 32px 0;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0px;
    }
}

@media screen and (max-width: 767px) {
    .apply-visa {
        padding: 16px 0 16px;
    }
}

.apply-visa-item {
    padding: 16px;
    border-radius: 24px;
    background-color: #fff;
    height: 174px;
    text-align: center;
    box-shadow: 0 1px 2px 0 #091e4240;
}

    .apply-visa-item:hover {
        background-color: #f9e9df;
    }

    .apply-visa-item .apply-visa-item-image {
        height: 100px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }

@media screen and (max-width: 1279px) {
    .apply-visa-item .apply-visa-item-image {
        height: 64px;
        width: 64px;
        margin-bottom: 12px;
        margin-left: auto;
        margin-right: auto;
    }

        .apply-visa-item .apply-visa-item-image img {
            width: 100%;
            height: 100%;
            overflow: hidden;
            object-fit: contain;
        }
}

.apply-visa-item p {
    font-size: 16px;
}

@media screen and (max-width: 1279px) {
    .apply-visa-item {
        height: 140px;
    }

        .apply-visa-item p {
            font-size: 14px;
        }
}

@media screen and (max-width: 767px) {
    .apply-visa-item {
        height: 126px;
    }

        .apply-visa-item p {
            font-size: 12px;
        }
}

.partner-block {
    padding: 48px 0;
}

.partner-content-row + .partner-content-row {
    margin-top: 48px;
}

@media screen and (max-width: 767px) {
    .partner-content-row {
        flex-wrap: wrap;
        gap: 8px;
    }

        .partner-content-row + .partner-content-row {
            margin-top: 16px;
        }

        .partner-content-row .partner-content-value a img {
            width: 50px;
            height: 21px;
        }
}

.item-active {
    background-color: #155ed2 !important;
    color: #fff !important;
}

.prority-plan {
    padding: 48px 0;
    background-color: #f2f7fb;
    border-top-right-radius: 260px;
    position: relative;
}

@media screen and (max-width: 1439px) {
    .prority-plan {
        padding: 21px 0 30px;
    }
}

@media screen and (max-width: 1279px) {
    .prority-plan {
        border-top-right-radius: 0;
    }
}

.item-fly {
    width: 308px;
    height: 207px;
    position: absolute;
    right: 10px;
    bottom: -29px;
}

@media screen and (max-width: 1279px) {
    .item-fly {
        width: 200px;
        height: 85px;
        right: 0px;
        bottom: 0px;
    }

        .item-fly img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
}

.promote-plan {
    padding: 48px 0;
}

@media screen and (max-width: 1279px) {
    .promote-plan {
        padding: 32px 0;
    }
}

@media screen and (max-width: 767px) {
    .promote-plan {
        padding: 16px 0 16px;
    }
}

.promote-item {
    position: relative;
    box-shadow: 0 1px 2px 0 #091e4240;
    border-radius: 14px;
    cursor: pointer;
}

    .promote-item:hover {
        background-color: #f9e9df;
    }

    .promote-item .promote-item-dotted {
        border-top: 2px dotted #83838380;
        margin: 15px 15px 15px;
    }

@media screen and (max-width: 1439px) {
    .promote-item .promote-item-dotted {
        margin: 12px;
    }
}

@media screen and (max-width: 1279px) {
    .promote-item .promote-item-dotted {
        margin: 8px;
    }
}

.promote-item .promote-item-content {
    padding: 0 16px 16px;
}

.promote-item .promote-item-image {
    width: 100%;
    max-height: 200px;
    border-radius: 14px 14px 0 0;
    overflow: hidden;
}

    .promote-item .promote-item-image img {
        width: 100%;
        height: 100%;
        object-fit: fill;
        border-radius: 14px 14px 0 0;
    }

.promote-item::before {
    content: "";
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 1px 0px 0px 0 #091e4240;
    position: absolute;
    top: 75%;
    left: -8px;
    transform: translateY(-50%);
    z-index: 2;
}

.promote-item::after {
    content: "";
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
    box-shadow: -2px 0px 0px 0 #091e4240;
    position: absolute;
    top: 75%;
    right: -8px;
    transform: translateY(-50%);
    z-index: 2;
}

@media screen and (max-width: 1279px) {
    .promote-item .promote-item-content {
        padding: 0 12px 12px;
    }

    .promote-item::before {
        content: "";
        width: 12px;
        height: 12px;
        top: 75%;
        left: -8px;
    }

    .promote-item::after {
        content: "";
        width: 12px;
        height: 12px;
        background: #fff;
        right: -8px;
    }
}

@media screen and (max-width: 767px) {
    .promote-item .promote-item-content {
        padding: 0 6px 6px;
    }

        .promote-item .promote-item-content .promote-item-dotted {
            margin-top: 6px;
            margin-bottom: 6px;
        }

    .promote-item::before {
        content: "";
        width: 8px;
        height: 8px;
        top: 75%;
        left: -4px;
    }

    .promote-item::after {
        content: "";
        width: 8px;
        height: 8px;
        background: #fff;
        right: -4px;
    }
}

.ticket-row {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    padding: 6px;
    align-items: center;
    border-radius: 6px;
}

    .ticket-row .ticket-row-icon {
        width: 44px;
    }

        .ticket-row .ticket-row-icon img {
            width: 100%;
        }

    .ticket-row .ticket-row-content {
        width: calc(100% - 56px);
    }

    .ticket-row.active {
        background-color: #e5eff7;
    }

        .ticket-row.active .ticket-row-content > div:first-of-type {
            color: #155ed2;
        }

    .ticket-row:hover {
        background-color: #e5eff7;
    }

        .ticket-row:hover .ticket-row-content > div:first-of-type {
            color: #155ed2;
        }

.filter-move {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    box-shadow: 0px 4px 8px 0 #091e4233;
    padding: 6px;
    position: absolute;
    left: 46%;
    background: #fff;
    cursor: pointer;
}

    .filter-move img {
        width: 100%;
    }

.sugestion {
    box-shadow: 0 10px 20px 0 #10061f40;
    background: #fff;
    border-radius: 12px;
    display: none;
}

    .sugestion ul li + li {
        border-top: 1px dotted #bcbcbc;
    }

    .sugestion.active {
        display: block;
    }

.dropdown-content-place-close {
    box-shadow: 0px 4px 8px 0px #091E4233;
    border: 1px solid #F37121;
    padding: 6px;
    border-radius: 6px;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.filter-point.mutiple-item {
    position: relative;
}

    .filter-point.mutiple-item::before {
        content: attr(data-number);
        width: 20px;
        height: 60px;
        border-radius: 12px 0 0 12px;
        background-color: #155ed2;
        color: white;
        position: absolute;
        z-index: 9;
        display: flex;
        justify-content: center;
        align-items: center;
    }

@media screen and (max-width: 1279px) {
    .filter-point.mutiple-item::before {
        height: 48px;
    }
}

@media screen and (max-width: 767px) {
    .filter-point.mutiple-item::before {
        content: attr(data-number);
        width: auto;
        border-radius: 12px;
        height: 20px;
        width: 40px;
        top: 8px;
        left: 0;
        font-size: 12px;
    }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
    .custom-container {
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media screen and (max-width: 1279px) {
    .list-item-action {
        flex-wrap: nowrap;
        overflow-y: hidden;
        scrollbar-width: none;
    }

        .list-item-action li {
            white-space: nowrap;
        }

    .partner-content-value a img {
        width: 70px;
        height: 26px;
        object-fit: contain;
        overflow: hidden;
    }

    .dropdown-content-custom {
        position: fixed !important;
        width: 100%;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 99;
        top: unset !important;
        border-radius: 12px 12px 0 0 !important;
        transform: none !important;
        max-height: 80vh;
    }

    .dropdown-content-place .search-recently-list > a {
        font-size: 14px;
        height: 24px;
        border-radius: 32px;
    }

    .dropdown-content-place .hot-place-search {
        margin-top: 12px;
        padding-bottom: 12px;
        padding-right: 30%;
    }

        .dropdown-content-place .hot-place-search > div {
            font-size: 12px;
            gap: 6px;
        }

    .dropdown-header {
        margin-left: -16px;
        margin-right: -16px;
        border-bottom: 1px dashed #E1E1EA;
        padding: 0 16px;
        margin-bottom: 12px;
    }

    .ticket-type-list {
        gap: 4px;
        margin-bottom: 0;
    }

        .ticket-type-list li {
            border-bottom: 1px dashed #E1E1EA;
        }

            .ticket-type-list li .ticket-row:hover {
                background-color: #F9E9DF;
            }

            .ticket-type-list li .ticket-row.active {
                background-color: #F9E9DF;
                position: relative;
            }

                .ticket-type-list li .ticket-row.active::after {
                    content: "";
                    width: 16px;
                    height: 16px;
                    position: absolute;
                    right: 6px;
                    background: url("../images/dropdown-icon-checked.svg") center center no-repeat;
                }

            .ticket-type-list li:last-of-type {
                border-bottom: none;
            }

        .ticket-type-list .dropdown-route-row {
            border-radius: 6px;
            padding: 6px;
            height: 28px;
            font-size: 12px;
            display: flex;
        }

            .ticket-type-list .dropdown-route-row:hover {
                background-color: #F9E9DF;
            }

            .ticket-type-list .dropdown-route-row.active {
                background-color: #F9E9DF;
                position: relative;
            }

                .ticket-type-list .dropdown-route-row.active::after {
                    content: "";
                    width: 16px;
                    height: 16px;
                    position: absolute;
                    right: 6px;
                    background: url("../images/dropdown-icon-checked.svg") center center no-repeat;
                }

    .ticket-person-list {
        border-bottom: none;
        margin-bottom: 0;
    }

    .dropdown-footer {
        border-top: 1px solid #E1E1EA;
        margin-left: -16px;
        margin-right: -16px;
        padding: 12px 16px 0;
    }
}

@media screen and (max-width: 767px) {
    .search-container {
        background-color: #ffffffcc;
    }

    .filter-wrapper {
        position: relative;
    }

        .filter-wrapper .remove-search-item-btn {
            position: absolute;
            top: 9px;
            right: 0;
            width: 24px;
            height: 24px;
            color: white;
            font-size: 14px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

            .filter-wrapper .remove-search-item-btn img {
                width: 100%;
                height: 100%;
                object-fit: contain;
                overflow: hidden;
            }

    .search-wraper {
        /*border: none;*/
        border-width: 1px;
        /*box-shadow: none;*/
        /*background: transparent;*/
        /*padding-top: 16px;*/
        background: #ffffffbf;
        padding: 15px;
        margin-top: 20px;
        border-radius: 15px !important;
    }

        .search-wraper .dropdown-place-btn {
            height: 40px;
            /*background-color: transparent;*/
            /*border-bottom: 1px solid #FFFFFF;*/
            border-radius: 40px;
            padding: 5px 2px 5px 0px;
            margin-top: 12px;
        }

            .search-wraper .dropdown-place-btn input {
                background-color: transparent;
                height: 40px;
                padding: 5px 2px 5px 40px;
                font-weight: 500;
            }

        .search-wraper .mutiple-item .dropdown-place-btn:first-child {
            margin-top: 32px;
        }

        .search-wraper .mutiple-item .filter-move {
            top: 57%;
        }

        .search-wraper .filter-move {
            /*background-color: transparent;*/
            width: 23px;
            height: 23px;
            padding: 5px;
            box-shadow: none;
            /*left: 0;*/
            position: absolute;
            transform: rotate(90deg);
            top: 45%;
        }

        .search-wraper .dropdown-date-wrap {
            height: 40px;
            /*background-color: transparent;*/
            /*border-bottom: 1px solid #FFFFFF;*/
            border-radius: 40px;
            padding: 5px 2px 5px 0px;
            margin-top: 12px;
        }

            .search-wraper .dropdown-date-wrap input {
                background-color: transparent;
                height: 40px;
                padding: 5px 2px 5px 40px;
                font-weight: 500;
            }

        .search-wraper .filter-person {
            height: 40px;
            /*background-color: transparent;*/
            /*border-bottom: 1px solid #FFFFFF;*/
            border-radius: 40px;
            padding: 5px 2px 5px 0px;
            margin-top: 12px;
            width: 100%;
            padding-left: 12px;
            font-weight: 500;
        }

            .search-wraper .filter-person img {
                padding-right: 10px;
            }

    .filter-action-search {
        margin-left: 0 !important;
        width: 100%;
    }

        .filter-action-search .search-button {
            height: 36px;
            padding: 10px 12px 10px 8px;
            font-size: 12px;
            border-radius: 24px;
        }

            .filter-action-search .search-button svg {
                width: 13px;
                height: 15px;
            }

    .partner-logo-item {
        height: 20px;
    }

        .partner-logo-item:nth-of-type(3) {
            height: 10px;
        }

        .partner-logo-item img {
            height: 100%;
            object-fit: contain;
        }

    #filterSearchMulti .filter-wrapper {
        margin-top: 10px;
    }

    .dropdown-content-custom {
        border-radius: 0 !important;
    }

    .dropdown-content-place {
        padding: 12px;
    }

        .dropdown-content-place .filter-search-input {
            border-radius: 12px;
            height: 32px;
            padding-top: 4px;
            padding-bottom: 4px;
        }

        .dropdown-content-place .search-recently {
            margin-top: 12px;
            padding-bottom: 12px;
        }

        .dropdown-content-place .hot-place-search {
            margin-top: 12px;
            padding-bottom: 12px;
            padding-right: 0;
        }

            .dropdown-content-place .hot-place-search > div {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

                .dropdown-content-place .hot-place-search > div:first-of-type {
                    margin-bottom: 6px;
                }

    .dropdown-content-place-close {
        box-shadow: none;
        padding: 0;
        border: none;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 8px;
    }
}

/*# sourceMappingURL=styles.css.map */
